home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
041-050
/
amok41
/
spiele
/
mastermind
/
txt
/
gadget.def
< prev
next >
Wrap
Text File
|
1993-11-04
|
1KB
|
33 lines
(*********************************************************************
*
* :Program. HilfsModul für Mastermind
* :Author. Hans Schafft
* :Address. Landfriedstraße 1A - Hinterhaus
* :Address. 6900 Heidelberg
* :Phone. 06221 - 22416
* :Version. 1.0
* :Date. 1989
* :Copyright. PD
* :Language. Modula-II
* :Translator. M2Amiga
*
*********************************************************************)
DEFINITION MODULE Gadget;
FROM Intuition IMPORT WindowPtr;
TYPE gadNum = (n,StText,FbText,minusSt,plusSt,minusFb,plusFb,stellen,farben,
spielen,hilfe,info,best,neu,einaus,ende,ok,f1,f2,f3,f4,f5,f6,
f7,f8,f9,f10,f11,f12,f13,f14,tip1,tip2,tip3,tip4,tip5,tip6,
tip7,tip8,tip9,tip10,tip11,tip12,tip13,tip14,tip15,tip16);
PROCEDURE FlexGadgetAufbau(stellenAnzahl : INTEGER);
PROCEDURE FestGadgetAufbau(wPtr : WindowPtr);
PROCEDURE StellenUndFarben(VAR stellenAnzahl,farbAnzahl : INTEGER);
PROCEDURE TipFuellen(gadNum : INTEGER;farbReg : CARDINAL);
PROCEDURE Auswerten(fus,ns : INTEGER);
PROCEDURE GadgetsLoeschen;
END Gadget.